home *** CD-ROM | disk | FTP | other *** search
- object Form1: TForm1
- Left = 200
- Top = 99
- Width = 435
- Height = 300
- Caption = 'TRY OUT 2 PROCEDURES AND 1 FUNCTION'
- Font.Color = clWindowText
- Font.Height = -13
- Font.Name = 'System'
- Font.Style = []
- PixelsPerInch = 96
- TextHeight = 16
- object Label1: TLabel
- Left = 24
- Top = 40
- Width = 79
- Height = 16
- Caption = 'Original text'
- end
- object Label2: TLabel
- Left = 24
- Top = 80
- Width = 90
- Height = 16
- Caption = 'Resulting text'
- end
- object Edit1: TEdit
- Left = 120
- Top = 32
- Width = 297
- Height = 24
- TabOrder = 0
- Text = 'Enter some TEXT here. Or use This Text!'
- end
- object Edit2: TEdit
- Left = 120
- Top = 72
- Width = 297
- Height = 24
- TabOrder = 1
- end
- object Button1: TButton
- Left = 24
- Top = 112
- Width = 369
- Height = 33
- Caption = 'procedure proc1( s : string );'
- TabOrder = 2
- OnClick = Button1Click
- end
- object Button2: TButton
- Left = 24
- Top = 152
- Width = 369
- Height = 33
- Caption = 'procedure proc2( var s : string );'
- TabOrder = 3
- OnClick = Button2Click
- end
- object Button3: TButton
- Left = 24
- Top = 192
- Width = 369
- Height = 33
- Caption = 'function Func1( s : string ) : string;'
- TabOrder = 4
- OnClick = Button3Click
- end
- end
-